home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / pctchnqs / 1990 / number1 / tabprog.cpp < prev    next >
Text File  |  1990-02-15  |  322b  |  16 lines

  1. /* Listing 5. Main program for C++ tab expansion */
  2.  
  3. #include "tabexp.hpp"
  4.  
  5. main()
  6. {
  7.   int c;
  8.   /* declare a tab expander using stdin and 8-spaces */
  9.   tabexp te(stdin, 8);
  10.  
  11.   do { /* loop until no more characters in input */
  12.     c = te.get();
  13.     if (c == -1) break; else putc(c, stdout);
  14.   } while(1);
  15. }
  16.